home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cc01.zip / BEEP.C < prev    next >
Text File  |  1984-10-18  |  190b  |  16 lines

  1. /* beep2 */
  2. /* a longer beep */
  3.  
  4. #define LIMIT 10000
  5.  
  6. main() {
  7.     int store;
  8.     int count = 0;
  9.  
  10.     store = inp(97);
  11.     outp(97, 79);
  12.     while (count++ < LIMIT)
  13.         ;
  14.     outp(97, store);
  15. }
  16.